-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature/spaceship: Clause 28: Localization, Clause 29: Input/output #1593
feature/spaceship: Clause 28: Localization, Clause 29: Input/output #1593
Conversation
... to get a test fix to support microsoft#1593.
FYI: the test failure is a libc++ test for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops - I meant to "request changes" for my directory_entry::operator<
comment.
@@ -3641,6 +3663,10 @@ namespace filesystem { | |||
uintmax_t capacity; | |||
uintmax_t free; | |||
uintmax_t available; | |||
|
|||
#if _HAS_CXX20 | |||
_NODISCARD friend constexpr bool operator==(const space_info&, const space_info&) noexcept = default; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I observe that this says constexpr
and noexcept
which are implied by the Standard but not depicted there. I think this is fine (I am somewhat torn between "generally avoid unnecessary code" and "this is a useful reminder"), no change requested.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Thanks for spaceship-izing locales and I/O so we can properly communicate with aliens! 👽 💬 📡 |
Works towards #62.